home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / TicOptionsPanel.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  680 b   |  39 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. /* $Id: TicOptionsPanel.h,v 1.8 1993/05/04 16:23:10 davis Exp $ */
  12.  
  13. #import "OptionsPanel.h"
  14.  
  15. @class Pane;
  16.  
  17. @interface TicOptionsPanel:OptionsPanel
  18. {
  19.     id        coordButton;
  20.     id        coordLabelField;
  21.     id        typeButton;
  22.     id        typeLabelField;
  23.  
  24.     Pane    *autoPane,        /* The Panes */
  25.         *seriesPane,
  26.         *userPane,
  27.         *currentPane;
  28. }
  29.  
  30. - init;
  31. - free;
  32.  
  33. - changeCoord:sender;
  34. - (int)coord;
  35. - doSetTicsType:sender;
  36.  
  37. @end
  38.  
  39.